home *** CD-ROM | disk | FTP | other *** search
- unit Arrtest7;
-
- interface
-
- uses
- SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
- Forms, Dialogs, StdCtrls;
-
- type
- TInspectionDlg = class(TForm)
- GrpFlags: TGroupBox;
- CheckBox1: TCheckBox;
- ChkAutoSize: TCheckBox;
- CheckBox3: TCheckBox;
- CheckBox7: TCheckBox;
- CheckBox8: TCheckBox;
- CheckBox9: TCheckBox;
- CheckBox4: TCheckBox;
- CheckBox5: TCheckBox;
- CheckBox6: TCheckBox;
- CheckBox10: TCheckBox;
- CheckBox11: TCheckBox;
- CheckBox12: TCheckBox;
- CheckBox13: TCheckBox;
- CheckBox14: TCheckBox;
- CheckBox15: TCheckBox;
- CheckBox16: TCheckBox;
- Button1: TButton;
- procedure CheckBox1Click(Sender: TObject);
- private
- { Private-Deklarationen }
- public
- { Public-Deklarationen }
- end;
-
- var
- InspectionDlg: TInspectionDlg;
-
- implementation
-
- {$R *.DFM}
-
- procedure TInspectionDlg.CheckBox1Click(Sender: TObject);
- begin
- If Visible Then
- ShowMessage( 'Changing this checkbox has no effect on the array Flags!');
- end;
-
- end.
-